Method: YARD::CodeObjects::Base#[]=

Defined in:
lib/yard/code_objects/base.rb

#[]=(key, value) ⇒ void

This method returns an undefined value.

Sets a custom attribute on the object

Parameters:

  • key (#to_s)

    the name of the custom attribute

  • value (Object)

    the value to associate

See Also:

[View source]

356
357
358
359
360
361
362
# File 'lib/yard/code_objects/base.rb', line 356

def []=(key, value)
  if respond_to?("#{key}=")
    send("#{key}=", value)
  else
    instance_variable_set("@#{key}", value)
  end
end